home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
6984
/
6984.xpi
/
chrome
/
lazarus.jar
/
content
/
common-dialog-overlay.js
< prev
next >
Wrap
Text File
|
2009-11-24
|
571b
|
17 lines
window.addEventListener("dialogaccept", function(){
var browser = Lazarus.getBrowser();
if (browser){
//the user isn't logged in until the dialog is closed, so we'll need to wait a moment
//until the login code has run
//we cannot use setTimeout() on this dialog window, as this window will no longer exist
//once it has closed.
browser.setTimeout(function(){
//attempt to login Lazarus
browser.Lazarus.loadPrivateKey();
browser.Lazarus.refreshIcon();
}, 100);
}
}, true);